home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9207.ARJ / 1007010A < prev    next >
Text File  |  1992-06-03  |  262b  |  15 lines

  1.  
  2. Listing 1 -- mbtowc.c
  3.  
  4. /* mbtowc function */
  5. #include <stdlib.h>
  6.  
  7.         /* static data */
  8. _Mbsave _Mbxtowc = {0};
  9.  
  10. int (mbtowc)(wchar_t *pwc, const char *s, size_t n)
  11.     {    /*    determine next multibyte code */
  12.     return (_Mbtowc(pwc, s, n, &_Mbxtowc));
  13.     }
  14.  
  15.